/******************************************************************************

                            Online Java Compiler.
                Code, Compile, Run and Debug java program online.
Write your code in this editor and press "Run" button to execute it.

*******************************************************************************/


import java.time.LocalDate;

import java.time.Month;

import java.time.temporal.ChronoUnit;


public class Main {

    public static void main(String[] args) {

        //Start Date
        LocalDate dateBefore = LocalDate.of(2022, Month.SEPTEMBER, 5);

        //Curent Date
        LocalDate dateAfter = LocalDate.now();

        long noOfDaysBetween = ChronoUnit.DAYS.between(dateBefore, dateAfter);

        System.out.println(noOfDaysBetween + " days since last confirmed bath");


        if (noOfDaysBetween % 2  == 0 )

            System.out.println("It is not a bath night.");

        else

            System.out.println("It is a bath night.");

    }

}